home *** CD-ROM | disk | FTP | other *** search
Text File | 1988-07-27 | 603 b | 28 lines | [TEXT/MPS ] |
- (*****************************************************
- PopMenuIntf.p
- This file contains the Pascal interface for the
- constants used in PopUpCDEF.p, and in any other
- program or unit which uses pop-ups.
- *****************************************************)
-
- UNIT PopMenuIntf;
-
- INTERFACE
- CONST
- { VARIATION CODE MODIFIERS: }
- mUnused = 1;
- mRes = 2;
- mCheck = 4;
- mKey = 8;
-
- { part codes }
- inPopUpBox = 1;
- titlePart = 2;
-
- { MDEF message: get item dimensions }
- mItemRectMsg = 512;
-
- { MDEF message: draw item in rect }
- mDrawItemMsg = 513;
- IMPLEMENTATION
- END. { PopMenuIntf }